Skip to content

fix: 리뷰 봇 경고 코멘트에 엔진 이름 명시 - #20

Merged
eottabom merged 1 commit into
mainfrom
fix/review-bot-engine-naming
Aug 8, 2026
Merged

fix: 리뷰 봇 경고 코멘트에 엔진 이름 명시#20
eottabom merged 1 commit into
mainfrom
fix/review-bot-engine-naming

Conversation

@eottabom

@eottabom eottabom commented Aug 8, 2026

Copy link
Copy Markdown
Owner

Summary

  • 로그인 만료 경고가 전부 "eottabom-review-bot"으로만 찍혀 claude/codex 중 어느 CLI 세션이 만료됐는지 구분 안 되던 문제 수정
  • eottabom-claude-review-bot / eottabom-codex-review-bot 으로 분리, 리뷰 본문 헤더도 동일하게 통일

Test plan

  • self-hosted 러너 등록 후 로그인 만료 상황 재현해 경고 코멘트에 엔진 이름이 맞게 찍히는지 확인

- 로그인 만료 경고가 "eottabom-review-bot"으로만 찍혀 claude/codex 중 어느 세션이 만료됐는지 구분 불가하던 문제 수정
- eottabom-claude-review-bot / eottabom-codex-review-bot 으로 분리하고 리뷰 본문 헤더도 동일하게 통일
@coderabbitai

coderabbitai Bot commented Aug 8, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 97a08542-70bb-49d6-9cbe-e813a9e6acec

📥 Commits

Reviewing files that changed from the base of the PR and between 066a67c and ae7d935.

📒 Files selected for processing (4)
  • .github/scripts/claude-review-run.sh
  • .github/scripts/codex-review-run.sh
  • .github/workflows/pr-auto-review.yml
  • .github/workflows/pr-mention-review.yml
📜 Recent review details
🔇 Additional comments (4)
.github/scripts/claude-review-run.sh (1)

25-25: LGTM!

.github/scripts/codex-review-run.sh (1)

25-25: LGTM!

.github/workflows/pr-auto-review.yml (1)

52-52: LGTM!

Also applies to: 124-124

.github/workflows/pr-mention-review.yml (1)

79-79: LGTM!

Also applies to: 178-178


📝 Walkthrough

리뷰 요약

엔진별 봇 식별자를 분리하여 로그인 만료 경고와 리뷰 본문의 출처를 명확하게 개선했습니다. 다만 동일한 문자열이 여러 워크플로에 직접 작성되어 있어 향후 봇 이름 변경 시 불일치가 발생할 수 있습니다. 공통 환경 변수 또는 재사용 가능한 설정으로 관리하면 유지보수성이 향상됩니다.

인라인 리뷰

.github/scripts/claude-review-run.sh

리뷰 본문에서 사용하는 봇 이름을 변경했습니다. 경고 댓글과 동일한 식별자 형식을 유지하는 테스트를 추가해 두 경로가 분리되지 않도록 하십시오.

# 리뷰 본문과 로그인 만료 경고에서 동일한 봇 식별자를 사용하도록 공통 상수로 관리
CLAUDE_REVIEW_BOT_NAME="eottabom-claude-review-bot"

.github/scripts/codex-review-run.sh

Codex 리뷰 본문의 식별자를 전용 봇 이름으로 변경했습니다. Claude 스크립트와 동일한 상수 관리 방식을 적용하면 엔진별 이름 변경 시 누락 위험을 줄일 수 있습니다.

.github/workflows/pr-auto-review.yml

로그인 만료 경고의 식별자를 엔진별 이름으로 변경했습니다. 경고 메시지가 실제 사용 엔진과 일치하는지 self-hosted runner에서 검증하는 자동화 테스트를 추가하십시오.

.github/workflows/pr-mention-review.yml

멘션 기반 로그인 만료 경고에도 엔진별 식별자를 적용했습니다. pr-auto-review.yml과 동일한 템플릿을 공유해 두 워크플로의 메시지 형식이 장기적으로 일치하도록 하십시오.

Walkthrough

Claude 및 Codex 리뷰 본문과 로그인 만료 알림의 봇 식별자를 전용 이름으로 변경했습니다. 리뷰 게시 흐름은 변경하지 않았습니다.

Changes

리뷰 봇 식별자 변경

Layer / File(s) Summary
리뷰 본문 식별자 변경
.github/scripts/claude-review-run.sh, .github/scripts/codex-review-run.sh
리뷰 본문 제목을 각각 eottabom-claude-review-boteottabom-codex-review-bot으로 변경했습니다.
로그인 만료 알림 식별자 변경
.github/workflows/pr-auto-review.yml, .github/workflows/pr-mention-review.yml
Claude 및 Codex 로그인 만료 알림에 각각 전용 봇 이름을 적용했습니다.

Estimated code review effort: 1 (Trivial) | ~3 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed 제목이 리뷰 봇 경고 코멘트에 엔진 이름을 명시하는 주요 변경 사항을 간결하게 설명합니다.
Description check ✅ Passed 변경 내용과 테스트 계획을 설명합니다. 다만 저장소 템플릿의 섹션 제목과 관련 이슈 항목은 포함하지 않았습니다.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/review-bot-engine-naming

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@eottabom
eottabom merged commit 6e0f353 into main Aug 8, 2026
1 of 3 checks passed
@eottabom
eottabom deleted the fix/review-bot-engine-naming branch August 8, 2026 09:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant